home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo DYNADEMO.BAT - This little demo batch file demonstrates how to
- echo use the shareware version of DYNAMO to play back game-files.
- echo To save/record/edit your own game-positions, you need to use
- echo the full version of DYNAMO.
- echo Have a look at these neat 'shots' - even if you are new to
- echo International 10x10 checkers, they will give you a taste.
- echo Type 1 for VGA, 2 for EGA, 3 for CGA graphics...
- getkey
- if errorlevel 52 goto endit
- if errorlevel 51 goto cga
- if errorlevel 50 goto ega
- if errorlevel 49 goto vga
- if errorlevel 48 goto endit
- :vga
- dyna59sh v prob1.e
- dyna59sh v prob2.e
- dyna59sh v prob3.e
- dyna59sh v prob4.e
- dyna59sh v author.e
- goto endit
- :ega
- dyna59sh e prob1.e
- dyna59sh e prob2.e
- dyna59sh e prob3.e
- dyna59sh e prob4.e
- dyna59sh e author.e
- goto endit
- :cga
- dyna59sh c prob1.e
- dyna59sh c prob2.e
- dyna59sh c prob3.e
- dyna59sh c prob4.e
- dyna59sh c author.e
- :endit